[DEPRECATED] Use form field endpoints instead. Delete a specific Custom Field Option by id
curl --request DELETE \
--url https://api.rootly.com/v1/custom_field_options/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "1",
"type": "custom_field_options",
"attributes": {
"custom_field_id": 127,
"value": "Non officiis pariatur minima.",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-08-19T10:19:16.246-07:00",
"created_at": "2025-08-19T10:19:15.220-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
custom_field_option deleted
The response is of type object
.
curl --request DELETE \
--url https://api.rootly.com/v1/custom_field_options/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "1",
"type": "custom_field_options",
"attributes": {
"custom_field_id": 127,
"value": "Non officiis pariatur minima.",
"color": "#FBE4A0",
"default": false,
"position": 1,
"updated_at": "2025-08-19T10:19:16.246-07:00",
"created_at": "2025-08-19T10:19:15.220-07:00"
}
}
}